home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / ma5_1h.zip / ERROR76 < prev    next >
Text File  |  1992-02-29  |  1KB  |  24 lines

  1. If  this message appears on screen it indicates that Morse Academy is  unable 
  2. to  find  files  needed for operation.   This is probably due to use  of  the 
  3. APPEND command being used to specify a list of directories to be searched for 
  4. data  files.  Many games sold for compatible PC's recommend the user name the 
  5. directory  containing the program's data in an APPEND statement.   If this is 
  6. done for even one program and the user attempts to execute Morse Academy when 
  7. the  current directory  is not MA's,  this  error can occur.   For example if  
  8. Morse Academy is located in the sub-directory C:\EXAMS\CODE,  perhaps clearly 
  9. defined in your PATH statement but is not the current one in your DOS prompt,  
  10. you should also include the path in the AUTOEXEC.BAT's APPEND statement along
  11. with the others already named.
  12.  
  13. Microsoft   recommends   the  APPEND  statement  NOT  be  used  globally   in 
  14. AUTOEXEC.BAT.  Instead they suggest you create  separate BAT files containing 
  15. the APPEND statement to execute a program requiring it.  For example, the BAT 
  16. file to execute program GAME1 might include:
  17.  
  18.      APPEND C:\GAME1\DATA  (adds GAME1's data directory to search path)
  19.      \GAME1\GAME1          (executes GAME1 from sub-directory \GAME1)
  20.      APPEND;               (empties the APPEND list after executing the game)
  21.  
  22. Carefully  read DOS instructions on the use of PATH and APPEND and make  sure 
  23. there is no conflict.
  24.